home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K GPO 2.xpl < prev    next >
Text File  |  2002-08-02  |  2KB  |  64 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Network\Security\ActiveDirectory"
  5. "UIPATH 2"="System\Security\Group Policy Objects"
  6. "UIPATH 3"="System\Debugging"
  7. "NAME"="Group Policy Objects (GPO) Logging"
  8. "VERSION"="1.21"
  9. "OSVERSION"="0001011"
  10. "LANGUAGE"="VBScript"
  11. "TEXT 1"="Enable ActiveDirectory GPOs debug log"
  12. "TEXT 2"="Enable ActiveDirectory GPOs logging to event log"
  13. "DESCRIPTION 1"="If you encounter problems after making changes to the Default Domain and/or Default Domain Controller group policies, you can enable GPO debug logging."
  14. "DESCRIPTION 2"="When enabled, the logfile can be found: %SystemRoot%\security\logs\Scepol.log"
  15. "DESCRIPTION 3"="Please note that his can only be done on a Windows 2000 Server!"
  16. "AUTHOR"="Xteq Systems"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"=" "
  20.  
  21.  
  22. sV1="HKLM\Software\Microsoft\Windows NT\CurrentVersion\SecEdit\PolicyDebugLevel" 'DW = 2
  23. sV2="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Diagnostics\RunDiagnosticLoggingGroupPolicy" 'DW = 1
  24.  
  25. Sub Plugin_Initialize 
  26.     i=RegReadValue(sV1)
  27.     if i=2 then SetUIElement 1,true
  28.  
  29.     i=RegReadValue(sV2)
  30.     if i=1 then SetUIElement 2,true
  31.  
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  b=GetUIElement(1)
  39.  if b=true then
  40.     Call RegWriteValue(sV1,2,2) 
  41.  else
  42.     If RegValueExists(sV1) then
  43.        Call RegDeleteValue(sV1)
  44.     end if
  45.  end if
  46.  
  47.  b=GetUIElement(2)
  48.  if b=true then
  49.     Call RegWriteValue(sV2,1,2) 
  50.  else
  51.     If RegValueExists(sV2) then
  52.        Call RegDeleteValue(sV2)
  53.     end if
  54.  end if
  55.  
  56. End Sub
  57.  
  58.  
  59. Sub Plugin_Terminate 
  60. End Sub
  61.  
  62.  
  63.  
  64.